home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / iconch1a / form1.frm < prev    next >
Text File  |  1999-10-06  |  2KB  |  69 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   3195
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   3570
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3195
  10.    ScaleWidth      =   3570
  11.    StartUpPosition =   3  'Windows-Standard
  12.    Begin VB.CommandButton Command4 
  13.       Caption         =   "Exit"
  14.       Height          =   375
  15.       Left            =   2880
  16.       TabIndex        =   3
  17.       Top             =   2760
  18.       Width           =   615
  19.    End
  20.    Begin VB.CommandButton Command3 
  21.       Height          =   735
  22.       Left            =   960
  23.       Picture         =   "Form1.frx":0000
  24.       Style           =   1  'Grafisch
  25.       TabIndex        =   2
  26.       Top             =   2160
  27.       Width           =   1695
  28.    End
  29.    Begin VB.CommandButton Command2 
  30.       Height          =   735
  31.       Left            =   960
  32.       Picture         =   "Form1.frx":09CA
  33.       Style           =   1  'Grafisch
  34.       TabIndex        =   1
  35.       Top             =   1320
  36.       Width           =   1695
  37.    End
  38.    Begin VB.CommandButton Command1 
  39.       Height          =   735
  40.       Left            =   960
  41.       Picture         =   "Form1.frx":1394
  42.       Style           =   1  'Grafisch
  43.       TabIndex        =   0
  44.       Top             =   480
  45.       Width           =   1695
  46.    End
  47. End
  48. Attribute VB_Name = "Form1"
  49. Attribute VB_GlobalNameSpace = False
  50. Attribute VB_Creatable = False
  51. Attribute VB_PredeclaredId = True
  52. Attribute VB_Exposed = False
  53. Private Sub Command1_Click()
  54. Me.Icon = Command1.Picture
  55.  
  56. End Sub
  57.  
  58. Private Sub Command2_Click()
  59. Me.Icon = Command2.Picture
  60. End Sub
  61.  
  62. Private Sub Command3_Click()
  63. Me.Icon = Command3.Picture
  64. End Sub
  65.  
  66. Private Sub Command4_Click()
  67. End
  68. End Sub
  69.